home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / lists / mint / l_1199 / 1807 < prev    next >
Encoding:
Internet Message Format  |  1994-08-27  |  2.4 KB

  1. Date: Thu, 4 Aug 1994 08:58:10 +0200
  2. From: Richard Huveneers <huveneer@math.ruu.nl>
  3. Message-Id: <199408040658.AA10468@hieper.math.ruu.nl>
  4. To: mint@atari.archive.umich.edu, evanlang@uss.lonestar.org
  5.  
  6. >
  7. > What are the advantages of screen?  Why should I use it?   I know its
  8. > a matter of personal preference, but so far I've found myself using most
  9. > of Unix stuff that the list has found useful.   Never thought I'd
  10. > admit it, but Unix utils are useful :-)
  11. >
  12.  
  13. I think the manual of screen will answer this question quite satisfactorily,
  14.  
  15. Richard.
  16.  
  17.      Screen is a full-screen window manager  that  multiplexes  a
  18.      physical   terminal  between  several  processes  (typically
  19.      interactive shells).  Each  virtual  terminal  provides  the
  20.      functions  of a DEC VT100 terminal and, in addition, several
  21.      control functions from the ANSI X3.64  (ISO  6429)  and  ISO
  22.      2022 standards (e.g. insert/delete line and support for mul-
  23.      tiple character sets).  There is a scrollback history buffer
  24.      for  each  virtual  terminal  and a copy-and-paste mechanism
  25.      that allows moving text regions between windows.
  26.  
  27.      When screen is called, it creates a  single  window  with  a
  28.      shell  in it (or the specified command) and then gets out of
  29.      your way so that you can use the  program  as  you  normally
  30.      would.   Then, at any time, you can create new (full-screen)
  31.      windows with other programs in them (including more shells),
  32.      kill  existing  windows, view a list of windows, turn output
  33.      logging on and off,  copy-and-paste  text  between  windows,
  34.      view the scrollback history, switch between windows in what-
  35.      ever manner you  wish,  etc.   When  a  program  terminates,
  36.      screen (per default) kills the window that contained it.  If
  37.      this window was in the foreground, the display  switches  to
  38.      the previous window; if none are left, screen exits.
  39.  
  40.      Everything you type is sent to the program  running  in  the
  41.      current window.  The only exception to this is the one keys-
  42.      troke that is used to  initiate  a  command  to  the  window
  43.      manager.   By  default, each command begins with a control-a
  44.      (abbreviated C-a from now on), and is followed by one  other
  45.      keystroke.   The  command character and all the key bindings
  46.      can be fully customized to be anything you like, though they
  47.      are always two characters in length.
  48.